home *** CD-ROM | disk | FTP | other *** search
/ Backpacker 2 (Sweden) / BackPacker 2 (Sweden) (Disc 1).7z / BackPacker 2 (Sweden) (Disc 1).bin / pc / instdata / instin02 / 00190_myChat.ls < prev    next >
Encoding:
Text File  |  1997-01-01  |  199 b   |  11 lines

  1. on keyDown
  2.   if the key = RETURN then
  3.     if the text of member "myChat" > " " then
  4.       play frame "sendChat"
  5.       set the text of member "myChat" to " "
  6.     end if
  7.   else
  8.     pass()
  9.   end if
  10. end
  11.